This Jupyter notebook is intented to be used alongside the book Python for Bioinformatics
Listing 1.2: sample.py: Sample Python Program
In [4]:
seq_1 = 'Hello,'
seq_2 = ' you!'
total = seq_1 + seq_2
seq_size = len(total)
print(seq_size)